/* ═══════════════════════════════════════════════════════════════
   RZGAS v3 — Fonts
   Stolzl (локально) + Onest (Google Fonts)

   ВАЖНО: @import ДОЛЖЕН быть в начале файла (CSS spec),
   до любых @font-face и других правил.
   ═══════════════════════════════════════════════════════════════ */

/* ─── Onest из Google Fonts (должен быть первым!) ─── */
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600&display=swap');

/* ─── Stolzl Medium (500) ─── */
@font-face {
  font-family: 'Stolzl';
  src: url('../fonts/Stolzl-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ─── Stolzl Bold (700) ─── */
@font-face {
  font-family: 'Stolzl';
  src: url('../fonts/Stolzl-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
