/* Local font fallback for Inter. Download TTF/WOFF files into ../assets/fonts/ and update paths if needed.
   The repository includes a script at scripts/download_assets.ps1 to fetch fonts and favicon.
*/
@font-face {
  font-family: 'InterLocal';
  /* relative to this CSS file: ../assets/fonts/ */
  src: url('../assets/fonts/Inter-Regular.woff2') format('woff2'),
       url('../assets/fonts/Inter-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'InterLocal';
  src: url('../assets/fonts/Inter-Medium.woff2') format('woff2'),
       url('../assets/fonts/Inter-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'InterLocal';
  src: url('../assets/fonts/Inter-SemiBold.woff2') format('woff2'),
       url('../assets/fonts/Inter-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'InterLocal';
  src: url('../assets/fonts/Inter-Bold.woff2') format('woff2'),
       url('../assets/fonts/Inter-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Use InterLocal as the primary font, fallback to system stack */
body, input, textarea, button, select {
  font-family: 'InterLocal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
