diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ca8f3a6..4d19e57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,6 +8,7 @@ import Tag from "@/tag/Tag"; import { Open_Sans } from "next/font/google"; import { Inter_Tight } from "next/font/google"; import { Raleway } from "next/font/google"; +import { Figtree } from "next/font/google"; @@ -34,8 +35,9 @@ export const metadata: Metadata = { -const raleway = Raleway({ - variable: "--font-raleway", + +const figtree = Figtree({ + variable: "--font-figtree", subsets: ["latin"], }); @@ -47,7 +49,7 @@ export default function RootLayout({ return ( - + {children} diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 2c0269e..578efaa 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-raleway), sans-serif; + font-family: var(--font-figtree), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-raleway), sans-serif; + font-family: var(--font-figtree), sans-serif; }