/* Self-hosted fonts — replaces Google Fonts CDN call in index.html.
   Inter: variable font (one file covers all weights 100–900).
   DM Mono: static files for weights 400 and 500.

   File placement:
     fonts/inter/inter-variable.ttf       ← rename from Inter-VariableFont_opsz,wght.ttf
     fonts/dm-mono/dm-mono-400.ttf       ← rename from DMMono-Regular.ttf
     fonts/dm-mono/dm-mono-500.ttf       ← rename from DMMono-Medium.ttf

   See CLAUDE.md § Self-hosted fonts for download instructions. */

/* Inter — variable font, normal style, all weights */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('inter/inter-variable.ttf') format('truetype');
}

/* DM Mono — static TTF files */
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('dm-mono/dm-mono-400.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('dm-mono/dm-mono-500.ttf') format('truetype');
}
