/* ============================================================
   위험정보 알리미 — 공유 폰트 모듈
   ------------------------------------------------------------
   ★ 사이트 전체 폰트는 이 파일 하나만 고치면 전 페이지에 반영됩니다.
     - 폰트를 바꾸려면: 아래 @font-face의 src 주소와
       :root 의 --app-font 값만 교체하세요.
   현재 적용 폰트: Paperlogy (페이퍼로지, 상업용 무료 / SIL OFL)
   ============================================================ */

@font-face {
    font-family: 'Paperlogy';
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-4Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Paperlogy';
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-5Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Paperlogy';
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-6SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Paperlogy';
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-7Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Paperlogy';
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-8ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Paperlogy';
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-9Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* 각 페이지는 font-family: var(--app-font) 로 이 값을 참조합니다. */
:root {
    --app-font: 'Paperlogy';
}

/* 페이지에 별도 지정이 없는 요소까지 폰트를 통일 */
body,
.btn, .form-control, .form-select, .card, .modal, .table,
input, select, textarea, button {
    font-family: var(--app-font), 'Malgun Gothic', sans-serif;
}
