/* Шрифт Inter: подключение файлов и единое семейство для всего интерфейса.
   Здесь же жила система дизайн-токенов (--color-*, --radius-*, --space-*),
   но ни один токен не читался: цвета и отступы заданы литералами
   в main_styles.css и theme.css. Токены удалены, чтобы не выглядеть
   точкой настройки, которой они не были. */
:root {
    --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face { font-family: "Inter"; src: url("/static/fonts/inter-regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/static/fonts/inter-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/static/fonts/inter-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/static/fonts/inter-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/static/fonts/inter-800.woff2") format("woff2"); font-weight: 800; font-style: normal; font-display: swap; }

html, body, button, input, select, textarea { font-family: var(--font-sans); }
