/* SUIT 는 2026-08-13 사장 결정으로 전면 제거 — 어디서도 렌더되지 않았다
   (아래 * 규칙이 모든 요소를 덮고, 클래스 레벨 SUIT 지정은 0곳이었다).
   실서체는 제거 전후 동일: -apple-system('Inter' 폴백). */
@font-face {
    font-family: 'Inter';
    src: url('/assets/font/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    /* 대괄호 파일명([wght])은 Tomcat 이 400 으로 거부할 수 있어 브래킷 없는 사본 사용 */
    src: url('/assets/font/JetBrainsMono.ttf') format('truetype');
    font-weight: 100 800;
    font-display: swap;
}

:root {
    --font-primary: -apple-system, 'Inter', sans-serif;
    --font-mono: -apple-system, 'Inter', sans-serif;
    /* 게임 HUD 전용 — 숫자·스탯·눈썹 라벨 (본문에는 쓰지 않는다) */
    --font-game: 'JetBrains Mono', 'SUIT', -apple-system, monospace;
}

* {
    font-family: var(--font-mono);
}