/* WP-8: self-hosted fonts (no CDN dependency — blueprint §6-2).
   Pretendard Variable: full variable font (not the CDN's 92-file dynamic
   subset) so any Korean text — including data-driven org names, not just
   fixed UI strings — renders correctly with one file.
   IBM Plex Mono: Latin-only subset (fontsource "latin" range) — this app
   only ever puts ASCII digits/punctuation in mono/num spans. */
@font-face {
  font-family: 'Pretendard Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 45 920;
  src: url('/static/fonts/PretendardVariable.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('/static/fonts/IBMPlexMono-400-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url('/static/fonts/IBMPlexMono-700-latin.woff2') format('woff2');
}
