/* 1. 폰트 등록 (ttf 형식) */
@font-face {
    font-family: 'MaktoobFont';
    /* 경로 주의: 현재 위치(css/)에서 한 단계 나가서(../) fonts/ 폴더로 진입 */
    src: url('../fonts/KoPubWorld Dotum Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 2. 전체 페이지 적용 */
body {
    /* 부트스트랩보다 우선 적용하기 위해 !important 사용 */
    font-family: 'MaktoobFont', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

/* 3. 제목 및 강조 텍스트에도 확실히 적용 */
h1, h2, h3, h4, h5, h6, .navbar-brand, .fw-bold {
    font-family: 'MaktoobFont', sans-serif !important;
}