/**
 * Self-hosted web fonts.
 *
 * Three files, subset to Basic Latin + Latin-1 Supplement + Cyrillic — everything
 * the EN and UA versions of the site need, including Є І Ї Ґ. Manrope and IBM Plex
 * Mono are variable fonts spanning weight 400-500 in a single file each, which is
 * exactly the range the design uses, so the range is declared instead of shipping
 * one file per weight. Source Serif 4 is static; the site uses only its 400.
 *
 * No unicode-range splits: each family is one file covering both alphabets.
 *
 * 55 KB in total, down from 203 KB across six files.
 */

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/manrope-var.woff2') format('woff2');
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/ibm-plex-mono-var.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-serif-4-400.woff2') format('woff2');
}
