/* ==========================================================================
   fonts.css — self-hosted, nothing fetched at runtime.
   Kapra Neue Pro Bold is the Meriläinen brand face; it carries the whole
   page, so it is the only file preloaded.
   ========================================================================== */

@font-face {
  font-family: 'Kapra';
  src: url('../fonts/KapraNeuePro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  /* Latin-1 Supplement for ä/ö/å, latin-ext for š/ž. */
  unicode-range: U+0000-00FF, U+0100-017F, U+2000-206F, U+20A0-20BF;
}

/* `swap` paints the fallback first. Kapra is a condensed grotesque, so an
   un-adjusted Arial Narrow swap shifts the tracking visibly on one short
   line of caps. These overrides were eyeballed against the real face at
   14px / 0.2em, not measured — re-measure if the line ever gets longer. */
@font-face {
  font-family: 'Kapra Fallback';
  src: local('Arial Narrow'), local('Helvetica Neue Condensed'), local('Segoe UI');
  size-adjust: 96%;
  ascent-override: 92%;
  descent-override: 22%;
  line-gap-override: 0%;
}

:root {
  --f-display: 'Kapra', 'Kapra Fallback', 'Arial Narrow', system-ui, sans-serif;
  --f-text:    var(--f-display);
}
