/**
 * 파일명: fonts.css
 * 설명: 로컬 웹폰트 선언 (Google Fonts CDN 대체)
 * 생성일: 2026-02-15
 *
 * 사용처:
 *   - /index.html : 메인 페이지
 *   - /about.html : 회사소개
 *   - /services.html : 서비스 소개
 *   - /hardware-bank.html : 하드웨어뱅크
 *   - /member-login.html : 로그인
 *   - /mypage.html : 마이페이지
 * 의존:
 *   - /fonts/Outfit-*.woff2 : 영문 디스플레이 폰트 (weight별)
 *   - /fonts/NotoSansKR-Variable.woff2 : 한글 본문 폰트 (가변폰트)
 */

/* ========================================
   Outfit - 영문 디스플레이 폰트 (weight별)
   ======================================== */
@font-face {
    font-family: 'Outfit';
    src: url('/fonts/Outfit-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

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

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

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

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

/* ========================================
   Noto Sans KR - 한글 본문 폰트 (가변폰트)
   weight 범위: 100~900
   ======================================== */
@font-face {
    font-family: 'Noto Sans KR';
    src: url('/fonts/NotoSansKR-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
