/* Scout brand typefaces.
 *
 * Acid Grotesk ships web formats, so woff2 is served with woff as a fallback. Nimbus ships no web
 * format, so the OTF is served directly - browsers accept it, and at 37K it is lighter than the
 * Acid Grotesk woff2 files anyway.
 *
 * `font-display: swap` on all of them: these pages carry a single short message, and holding the
 * text back behind a font download would leave someone staring at an empty blue screen.
 */
@font-face {
  font-family: 'Acid Grotesk';
  src: url('/fonts/FFF-AcidGrotesk-Book.woff2') format('woff2'),
       url('/fonts/FFF-AcidGrotesk-Book.woff') format('woff');
  font-weight: 350;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Acid Grotesk';
  src: url('/fonts/FFF-AcidGrotesk-Regular.woff2') format('woff2'),
       url('/fonts/FFF-AcidGrotesk-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Acid Grotesk';
  src: url('/fonts/FFF-AcidGrotesk-Bold.woff2') format('woff2'),
       url('/fonts/FFF-AcidGrotesk-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nimbus Sans';
  src: url('/fonts/NimbusSan-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nimbus Sans';
  src: url('/fonts/NimbusSan-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

