/* FLARE portal — webfonts, fully self-hosted.
 *
 * Nothing here is fetched from a font CDN: the portal must work with the WAN
 * down, and a self-hosted deployment should not leak visitor requests to a
 * third party. Both families are vendored as woff2.
 *
 * Sora     — free substitute for Creato Display (headlines)
 * Selawik  — Microsoft's open-source Segoe UI metric clone, SIL OFL 1.1 (body)
 *
 * Selawik is listed *after* the real Segoe UI in the stack, so Windows machines
 * render the genuine brand font and never download the substitute.
 */

@font-face {
  font-family: 'Sora';
  src: url('/static/fonts/Sora-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sora';
  src: url('/static/fonts/Sora-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sora';
  src: url('/static/fonts/Sora-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Selawik';
  src: url('/static/fonts/selawk.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Selawik';
  src: url('/static/fonts/selawksb.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Selawik';
  src: url('/static/fonts/selawkb.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
