/*
 * Ingeno Design System — Webfont loading
 *
 * Primary typefaces:
 *   Serif  → Domaine Text           (local .otf files, supplied by brand)
 *   Sans   → Inter                  (Google Fonts)
 *
 * Domaine Text is a licensed Klim Type Foundry face used by Ingeno for all
 * editorial display headings. Three weights are shipped: 400 / 500 / 700.
 * Inter remains the UI workhorse and is loaded from Google Fonts.
 */

@font-face {
  font-family: 'Domaine Text';
  src: url('./DomaineText-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Domaine Text';
  src: url('./DomaineText-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Domaine Text';
  src: url('./DomaineText-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

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