/* fonts.css — Maps Google Fonts CDN names to the CSS custom property font stacks.
   The original Astro build used "Merriweather Variable", "Open Sans Variable", etc.
   but those woff2 files aren't available locally. Google Fonts CDN serves
   "Merriweather", "Open Sans", "Oswald" (static weights). This file overrides
   the custom properties to use the CDN names. */

:root {
  --font-display: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;
  --font-label: 'Oswald', system-ui, sans-serif;
  --font-accent: 'Oswald', system-ui, sans-serif;
}
