diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f319e53..8a9ebc1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,6 +3,7 @@ import { Inter } from "next/font/google"; import { DM_Sans } from "next/font/google"; import { Libre_Baskerville } from "next/font/google"; import { Montserrat } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./styles/variables.css"; import "./globals.css"; @@ -13,14 +14,11 @@ export const metadata: Metadata = { -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", - subsets: ["latin"], - weight: ["400", "700"], -}); -const inter = Inter({ - variable: "--font-inter", + +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -30,7 +28,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}