/*
 * Self-hosted 폰트 — 폐쇄망(air-gap) 대응, 외부 CDN 의존 제거 (REQ-SEC-004 AC-1).
 * 기존: cdn.jsdelivr.net(Pretendard) + fonts.googleapis.com(Fira Code) 런타임 로드 → 폐쇄망 미로드.
 * 현재: Pretendard Variable을 앱 내부(/fonts)에서 서빙. 코드용 monospace는 시스템 폰트 폴백.
 */
@font-face {
  font-family: 'Pretendard Variable';
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/pretendard/PretendardVariable.woff2') format('woff2-variations');
}
