/* fonts.css — self-host 폰트 (CDN 제거, 완전 로컬).
   기존: fonts.googleapis.com(Orbitron·Space Grotesk) + jsdelivr(Pretendard).
   Pretendard는 가변 폰트 단일 파일로 전 굵기 커버. font-display:swap으로
   폰트 로드 전엔 시스템 폴백(FOIT 방지). */

/* 본문 — Pretendard (한국어+라틴), 가변 */
@font-face {
    font-family: 'Pretendard';
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    src: url('/static/fonts/pretendard/PretendardVariable.woff2') format('woff2');
}

/* 로고 — Orbitron */
@font-face {
    font-family: 'Orbitron';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url('/static/fonts/orbitron/Orbitron-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Orbitron';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('/static/fonts/orbitron/Orbitron-700.woff2') format('woff2');
}

/* 디스플레이/제목 — Space Grotesk */
@font-face {
    font-family: 'Space Grotesk';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url('/static/fonts/space-grotesk/SpaceGrotesk-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('/static/fonts/space-grotesk/SpaceGrotesk-700.woff2') format('woff2');
}
