/* ─────────────────────────────────────────────────────────────
   FONTS
   Two families:
     • Kraken-Brand   (display headings) — self-hosted Signika Bold
       (uploaded by the user; the licensed display face).
     • Kraken-Product (UI / body) — IBM Plex Sans (Google Fonts).
       Still a substitute; swap in the licensed UI face when available.
   ───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

/* Display face — self-hosted Signika Bold. */
@font-face {
  font-family: 'Kraken-Brand';
  src: url('../fonts/SIGNIKA-BOLD.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kraken-Product';
  src: local('IBM Plex Sans');
  font-weight: 400 600;
  font-display: swap;
}
