diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cf51730..af69466 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,6 +4,7 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Cormorant_Garamond } from "next/font/google"; +import { Instrument_Sans } from "next/font/google"; const ubuntu = Ubuntu({ variable: "--font-ubuntu", subsets: ["latin"], @@ -34,6 +35,11 @@ const cormorantGaramond = Cormorant_Garamond({ weight: ["300", "400", "500", "600", "700"], }); +const instrumentSans = Instrument_Sans({ + variable: "--font-instrument-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -42,7 +48,7 @@ export default function RootLayout({ return ( - + {children} diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 29e30fd..3ddf982 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-cormorant-garamond), serif; + font-family: var(--font-instrument-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-cormorant-garamond), serif; + font-family: var(--font-instrument-sans), sans-serif; }