/*
 * The rebrand webfaces, self-hosted alongside this file.
 *
 * A plain stylesheet rather than a rule in the theme, for two reasons. Emotion's object
 * syntax cannot express four sibling `@font-face` rules — a single `@font-face` key
 * collapses them into one rule where only the last family survives. And a `<link>`ed
 * stylesheet is discoverable while the document parses, so the browser can fetch a face
 * before the bundle has run; a block injected at runtime leaves every weight flashing the
 * fallback until React has rendered.
 */
@font-face {
  font-family: 'ABC Arizona Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url('/fonts/ABCArizonaSans-Regular.woff2') format('woff2'),
    url('/fonts/ABCArizonaSans-Regular.woff') format('woff');
}
@font-face {
  font-family: 'ABC Arizona Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src:
    url('/fonts/ABCArizonaSans-Medium.woff2') format('woff2'),
    url('/fonts/ABCArizonaSans-Medium.woff') format('woff');
}
@font-face {
  font-family: 'ABC Arizona Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    url('/fonts/ABCArizonaSans-Bold.woff2') format('woff2'),
    url('/fonts/ABCArizonaSans-Bold.woff') format('woff');
}
@font-face {
  font-family: 'ABC Arizona Flare';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src:
    url('/fonts/ABCArizonaFlare-Light.woff2') format('woff2'),
    url('/fonts/ABCArizonaFlare-Light.woff') format('woff');
}
