/**
 * Local Fonts CSS
 * 폐쇄망 환경을 위한 로컬 폰트 정의
 *
 * 폐쇄망 사용 시 아래 폰트 파일들을 /fonts/ 폴더에 추가해야 합니다:
 * - inter-300.woff2 ~ inter-700.woff2
 * - jetbrains-mono-400.woff2, jetbrains-mono-500.woff2
 *
 * 폰트 다운로드 방법:
 * 1. https://fonts.google.com/specimen/Inter 에서 Inter 다운로드
 * 2. https://fonts.google.com/specimen/JetBrains+Mono 에서 JetBrains Mono 다운로드
 * 3. woff2 파일들을 /static/fonts/ 폴더에 복사
 */

/* Google Fonts CDN (인터넷 환경) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* 로컬 폰트 (폐쇄망 환경 - 위 import 주석처리 후 사용) */
/*
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/fonts/inter-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/inter-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/inter-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/inter-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/inter-700.woff2') format('woff2');
}

@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/jetbrains-mono-400.woff2') format('woff2');
}

@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/jetbrains-mono-500.woff2') format('woff2');
}
*/
