diff --git a/client/index.css b/client/index.css index 38894ca..dbc604d 100644 --- a/client/index.css +++ b/client/index.css @@ -8,7 +8,18 @@ @font-face { font-family: 'GeorgiaDigits'; src: local('Georgia'); - unicode-range: U+0030-U+0039; /* 0–9 */ + unicode-range: + U+0030-U+0039, /* 0–9 */ + U+002C, /* , thousands separator */ + U+002E, /* . decimal point */ + U+002D, /* - minus / hyphen */ + U+002B, /* + plus */ + U+0025, /* % percent */ + U+0024, /* $ dollar */ + U+00A2, /* ¢ cent */ + U+00A3, /* £ pound */ + U+00A5, /* ¥ yen */ + U+20AC; /* € euro */ } /* ── Tailwind base ───────────────────────────────────────── */ @@ -52,8 +63,8 @@ --sidebar-border: 0.88 0.008 250; --sidebar-ring: 0.55 0.20 276; --font-sans: 'GeorgiaDigits', Roboto, Inter, ui-sans-serif, system-ui, sans-serif; - --font-serif: Merriweather, Georgia, serif; - --font-mono: "Roboto Mono", ui-monospace, SFMono-Regular, monospace; + --font-serif: 'GeorgiaDigits', Merriweather, Georgia, serif; + --font-mono: 'GeorgiaDigits', "Roboto Mono", ui-monospace, SFMono-Regular, monospace; --radius: 1rem; }