/*
 * 웹폰트 자체 호스팅 — 업무망(내부망)에서 cdn.jsdelivr.net·cdnjs.cloudflare.com 이 차단돼
 * 폰트가 로드되지 않는다. 정보보안팀 회신(2026-09-11, 정보보안요청 #53): 외부 CSS 도메인을
 * 건건이 오픈하는 것은 어려우니 내재화한다. 실서비스(외부망) 사용자에게는 동작 변화가 없고,
 * 내부망 확인·자동 QA 컨테이너에서 폰트가 실제로 적용된다.
 *
 * 파일명에 버전을 박았다 — /assets/fonts/** 는 immutable 장기 캐시로 서빙한다
 * (WebConfig.addResourceHandlers). 폰트를 올릴 때는 파일명 버전을 올리고 이 파일을 함께 고친다.
 *
 * Pretendard 는 variable 한 파일(2.0MB)이 static 5종(3.7MB)보다 작아 variable 로 통일했다.
 * 'Pretendard' 와 'Pretendard Variable' 두 이름을 모두 선언한다 — 기존 페이지가 양쪽을 쓰고 있어
 * 링크만 바꾸고 페이지 CSS 는 건드리지 않기 위해서다.
 */

@font-face {
    font-family: 'Pretendard';
    font-weight: 45 920;
    font-style: normal;
    font-display: swap;
    src: url('/assets/fonts/PretendardVariable-1.3.9.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard Variable';
    font-weight: 45 920;
    font-style: normal;
    font-display: swap;
    src: url('/assets/fonts/PretendardVariable-1.3.9.woff2') format('woff2');
}

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

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

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