/* Self-hosted Roboto (#2659) — replaces the fonts.googleapis.com stylesheet that index.html
   used to load at runtime. Agent workstations can't reach fonts.googleapis.com/fonts.gstatic.com,
   so the previous <link> silently failed and MudBlazor fell back to a system sans-serif.

   Font license: this variable-font release of Roboto (v51) is licensed under the SIL Open Font
   License, Version 1.1 (https://openfontlicense.org) — verified against Google Fonts' own
   download manifest for the Roboto family, which ships OFL.txt, not Apache-2.0 (the classic
   static Roboto release was Apache-2.0; the current variable-font release is not). Full license
   text vendored alongside the font at ../fonts/OFL.txt. Source: fetched from Google Fonts
   (fonts.gstatic.com/s/roboto/v51/...), vendored locally instead of loaded at runtime.

   Google Fonts currently serves Roboto as a single variable-font file (wght axis 100–900) per
   subset, reused across every requested static weight — the CSS this replaces
   (family=Roboto:300,400,500,700&display=swap) resolved all four weights to the byte-identical
   "latin" subset file. We vendor that one file and declare it with a font-weight RANGE, which is
   the standard way to expose a variable font's full weight axis (covers 300/400/500/700 that
   MudBlazor's default typography uses, plus any other weight in range).

   unicode-range is carried over from Google's "latin" subset — Latin-1 Supplement (U+0080-00FF)
   already covers common Western-European accents (é, ñ, ü, ç, ...), which is what this
   English-language agent UI needs. */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
