/*
  Minimal local font faces for web-app fallback text.

  Primary UI fonts are loaded from Google Fonts in index.html:
  - Roboto Mono (body)
  - Poppins (headings)

  We keep Inter locally because some canvas fallback labels use:
  ctx.font = '... Inter, sans-serif'
*/

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
