diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5f0a017..77f936d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Source_Sans_3 } from "next/font/google"; +import { Lato } from "next/font/google"; @@ -21,9 +22,11 @@ export const metadata: Metadata = { }, }; -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", + +const lato = Lato({ + variable: "--font-lato", subsets: ["latin"], + weight: ["100", "300", "400", "700", "900"], }); export default function RootLayout({ @@ -34,7 +37,7 @@ export default function RootLayout({ return ( - + {children}