/* 웹폰트 불러오기 */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&family=Didact+Gothic&display=swap');
/* 프리텐다드 폰트 불러오기 */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

/* 폰트 스타일 */
.heading-1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 65px;
    letter-spacing: 15px;
    text-transform: uppercase;
}

.body-text {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 18px;
    line-height: 32px;
}

.btn-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* 한글 폰트 스타일 */
.korean-heading {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: -0.5px; /* 한글은 자간을 좁게 하는 것이 가독성에 좋습니다 */
}

.korean-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.3px;
}

.korean-text-bold {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600; /* SemiBold */
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.3px;
}