/*
  Локальный шрифт Inter Variable
  Источник: https://rsms.me/inter/ (официальный, MIT License)
  Один файл содержит все веса 100-900 (variable font axis "wght")
  Заменяет внешний https://fonts.googleapis.com/css2?family=Inter
*/
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/static/fonts/InterVariable.woff2') format('woff2-variations'),
       url('/static/fonts/InterVariable.woff2') format('woff2');
  font-named-instance: 'Regular';
}

/* Обеспечиваем плавный фоллбэк на системные шрифты пока загружается Inter */
:root {
  --font-inter-fallback: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
