diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bace2a0..23a8d0a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -33,6 +33,7 @@ import { Open_Sans } from "next/font/google"; import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import { Archivo } from "next/font/google"; +import { Cormorant_Garamond } from "next/font/google"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], @@ -198,6 +199,12 @@ const archivo = Archivo({ subsets: ["latin"], }); +const cormorantGaramond = Cormorant_Garamond({ + variable: "--font-cormorant-garamond", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -206,7 +213,7 @@ export default function RootLayout({ return ( - + {children}