/* Local font fallbacks for privacy-safe loading (no external requests) */
/* Place the .woff2 files into /fonts/ with these exact filenames: 
   AmaticSC-Regular.woff2, AmaticSC-Bold.woff2 
*/

@font-face {
  font-family: 'Amatic SC';
  src: url('/fonts/AmaticSC-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Amatic SC';
  src: url('/fonts/AmaticSC-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* If Inter is used, prefer system fonts as fallback to avoid external requests */
:root {
  --font-sans: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}
