/**
 * @file fonts.css
 * NS Digital brand typeface — Raleway, self-hosted.
 *
 * Overrides web/themes/contrib/byte_theme/src/fonts.css the same way
 * web/theme.css overrides src/theme.css (see that file's header) — Byte Theme
 * picks this up automatically because it sits in the Drupal root next to
 * index.php (byte_theme's src/Hook/ThemeHooks.php).
 *
 * Raleway is the D7 theme's title face
 * (web_d7/sites/all/themes/md_alpine/scss/_variables.scss: `$font-title`),
 * loaded there from Google Fonts at runtime
 * (`https://fonts.googleapis.com/css?family=Raleway:400,700`, set via the
 * theme's "Google Web Fonts" setting). Self-hosted here instead, matching how
 * Byte's own Roboto already ships — no third-party request, so no Klaro
 * consent app is needed for it (config/sync/klaro.klaro_purpose.styling.yml
 * exists but nothing uses it yet; a self-hosted font doesn't need it either).
 *
 * File below is Google's own served woff2 for weight 400 and weight 700 —
 * both requests returned byte-identical files, because Raleway is a variable
 * font and Google's per-weight CSS just pins two static instances of the same
 * file. Declared here the same way Byte declares Roboto: one @font-face with
 * a weight range, latin subset only (the only one this site's copy uses; D7
 * never set the cyrillic/vietnamese/latin-ext subsets Google also serves).
 * Regular text and headings use 400 and 700 only, matching the exact D7
 * setting above — no other weight was ever actually configured there.
 */

/* latin */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(fonts/Raleway/raleway-var-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;
}
