/* CS2 HUD font.
 *
 * Stratum2 is Valve's proprietary HUD font — NOT in the shipped VPK and not
 * redistributable, so we can't self-host it. Rajdhani (SIL OFL, via Google Fonts)
 * is a very close free substitute: the same squarish geometric-condensed shape
 * CS2 uses for the HUD, and — crucially — it's a WEBFONT, so it loads on every
 * device (including the low-end Android the viewer targets) rather than falling to
 * a normal-width system sans. That keeps the condensed metrics the HUD is laid out
 * around (money / health / ammo digits) correct everywhere it renders.
 *
 * index.html already links these families for the dashboard; the @import here makes
 * the cs2hud stylesheet self-contained (the HUD carries its own font dependency and
 * looks right in the standalone preview harness too). The browser dedupes the fetch.
 * CSP allows fonts.googleapis.com (style) + fonts.gstatic.com (font).
 *
 * To use the real Stratum2 later: self-host the files in public/fonts/ and add an
 * @font-face { font-family:'Stratum2'; … } here — it's first in the HUD's family
 * chain, so it wins automatically. */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Saira+Condensed:wght@500;600;700;800&display=swap');
