/*
 * GMA self-hosted fonts — update-safe per GMA_Drupal_UpdateSafe_Implementation.md
 * Files: themes/custom/gma/fonts/ — survives composer update, no CDN dependency.
 * SIL OFL licensed — legal to self-host.
 *
 * Inter Variable        : weights 100–900, Latin — English UI and body
 * Noto Sans Telugu Var  : weights 100–900, Telugu script — :lang(te) text
 *
 * font-display: swap — text renders in fallback immediately, swaps when loaded.
 */

/* ── Inter — English UI and body copy ─────────────────── */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ── Noto Sans Telugu — Telugu script companion to Inter ─ */
@font-face {
  font-family: 'Noto Sans Telugu';
  src: url('../fonts/NotoSansTelugu-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
