/* 1. Pretendard 폰트 불러오기 (CDN) */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

/* 2. 폰트 적용 설정 */

/* Body (본문) - 명조(Lora)를 버리고 깔끔한 고딕으로 변경 */
body {
    /* Pretendard를 최우선으로, 없으면 시스템 폰트 사용 */
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif !important;
    line-height: 1.7; /* 고딕체는 1.6~1.7 정도가 읽기 편합니다 */
    letter-spacing: -0.02em; /* 자간을 살짝 좁히면 더 전문적인 느낌이 납니다 */
}

/* Secondary font - 굳이 명조를 쓸 필요가 없다면 Body와 동일하게 설정 */
.secondary-font, #secondary-font {
    font-family: "Pretendard", sans-serif;
}

/* Primary font (제목 등) - 기존 Alata 느낌을 살리되 한글은 Pretendard */
.primary-font, #primary-font {
    font-family: "Alata", "Pretendard", sans-serif;
    font-weight: 700; /* 제목은 두껍게 */
}

/* Default font (기본) - 기존 Roboto 느낌 살리되 한글은 Pretendard */
.default-font, #default-font {
    font-family: "Roboto", "Pretendard", sans-serif;
}
