diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 308b378..eac41bc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -12,6 +12,7 @@ import { Mulish } from "next/font/google"; import { Archivo } from "next/font/google"; import { Raleway } from "next/font/google"; import { DM_Sans } from "next/font/google"; +import { Lato } from "next/font/google"; @@ -52,9 +53,11 @@ export const metadata: Metadata = { -const dmSans = DM_Sans({ - variable: "--font-dm-sans", + +const lato = Lato({ + variable: "--font-lato", subsets: ["latin"], + weight: ["100", "300", "400", "700", "900"], }); export default function RootLayout({ @@ -65,7 +68,7 @@ export default function RootLayout({ return ( - + {children}