diff --git a/app/globals.css b/app/globals.css index 014577d..a0babac 100644 --- a/app/globals.css +++ b/app/globals.css @@ -37,10 +37,9 @@ --sidebar-accent-foreground: oklch(0.205 0 0); --sidebar-border: oklch(0.922 0 0); --sidebar-ring: oklch(0.708 0 0); - --font-inter: "Inter", sans-serif; - --font-playfair: "Playfair Display", serif; - --font-geist-mono: "Geist Mono", monospace; + /* Fixed font variables to match actual loaded fonts */ --font-geist-sans: "Geist Sans", sans-serif; + --font-geist-mono: "Geist Mono", monospace; } .dark { @@ -79,10 +78,7 @@ } @theme inline { - /* Updated font variables to use new stylish fonts */ - --font-sans: var(--font-geist-sans); - --font-serif: var(--font-geist-sans); - --font-mono: var(--font-geist-mono); + /* optional: --font-sans, --font-serif, --font-mono if they are applied in the layout.tsx */ --color-background: var(--background); --color-foreground: var(--foreground); --color-card: var(--card);