/* font.css - user fonts */
:root{
  --font-display: 'Luckiest Guy', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-title: 'Fredoka', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-body: 'Exo 2', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-list: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ✅ nav__link를 여기로 이동 */
.h1, .h2, .h3, .brand__name, .nav__link, span{ font-family: var(--font-title); }

/* ✅ nav__link에 강제 적용 */
.nav__link {
  font-family: var(--font-title) !important;
}

body{ font-family: var(--font-body); }

/* ✅ nav__link를 여기서 제거 */
.btn, .pill, .tab, .acc__sum, .checklist{ font-family: var(--font-list); }


/* Display headlines */
.h1, .hero__title{ font-family: var(--font-display); }

/* 데스크톱 네비게이션 */
.nav__link {
  font-family: 'Fredoka', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif !important;
  font-weight: 600 !important;
}

/* 혹시 다른 선택자가 있을 경우 대비 */
.nav .nav__link,
nav .nav__link,
.header .nav__link {
  font-family: 'Fredoka', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif !important;
  font-weight: 600 !important;
}

/* ✅ 모바일 메뉴 네비게이션 */
.mobile-menu__link {
  font-family: 'Fredoka', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif !important;
  font-weight: 600 !important;
}

.mobile-menu .mobile-menu__link,
.mobile-menu__links .mobile-menu__link {
  font-family: 'Fredoka', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif !important;
  font-weight: 600 !important;
}