fix: resolve font configuration mismatch in CSS

Match CSS font references to actual layout fonts.

Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com>
This commit is contained in:
v0 2025-09-03 09:37:21 +00:00
parent fcfde15b0d
commit a829ec97cd
1 changed files with 3 additions and 2 deletions

View File

@ -40,6 +40,7 @@
--font-inter: "Inter", sans-serif; --font-inter: "Inter", sans-serif;
--font-playfair: "Playfair Display", serif; --font-playfair: "Playfair Display", serif;
--font-geist-mono: "Geist Mono", monospace; --font-geist-mono: "Geist Mono", monospace;
--font-geist-sans: "Geist Sans", sans-serif;
} }
.dark { .dark {
@ -79,8 +80,8 @@
@theme inline { @theme inline {
/* Updated font variables to use new stylish fonts */ /* Updated font variables to use new stylish fonts */
--font-sans: var(--font-inter); --font-sans: var(--font-geist-sans);
--font-serif: var(--font-playfair); --font-serif: var(--font-geist-sans);
--font-mono: var(--font-geist-mono); --font-mono: var(--font-geist-mono);
--color-background: var(--background); --color-background: var(--background);
--color-foreground: var(--foreground); --color-foreground: var(--foreground);