diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3147720..ace4472 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -24,6 +24,8 @@ import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import { Manrope } from "next/font/google"; import { Public_Sans } from "next/font/google"; +import { Josefin_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], @@ -147,6 +149,16 @@ const publicSans = Public_Sans({ subsets: ["latin"], }); +const josefinSans = Josefin_Sans({ + variable: "--font-josefin-sans", + subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -155,7 +167,7 @@ export default function RootLayout({ return ( - + {children}