diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2a1f081..cea292c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -29,14 +29,15 @@ export const metadata: Metadata = { }; -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -46,7 +47,7 @@ export default function RootLayout({ return ( - + {children} diff --git a/src/app/styles/base.css b/src/app/styles/base.css index c2b4e50..c719d19 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-dm-sans), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-manrope), sans-serif; + font-family: var(--font-dm-sans), sans-serif; }