@charset "UTF-8";
/* Theme CSS - 폰트/색상 변수 + 폰트 import·@font-face 통합 */
/* 이 파일만 수정하면 전체 테마(색상/폰트) 변경 가능 */

/* ── Font Imports (전 폰트 import는 이 파일에 통합) ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&family=Jeju+Myeongjo&family=Qwigley&display=swap');

/* 로컬 장식 영문 (Abigail) — 깨진 woff2 제외, 정상 woff/otf만 사용 */
@font-face {
  font-family: 'Abigail';
  font-style: normal;
  src:
    url(../fonts/abigail.woff) format('woff'),
    url(../fonts/abigail.otf) format('opentype');
  font-display: swap;
}

/* CSS Variables */
:root {
  /* 색상 (primary: 베이지 배경, secondary: 브라운 브랜드) */
  --color-primary: #f6f3ec;
  --color-secondary: #897558;

  /* 한글 폰트 (main: 제주명조, sub: 명조 타이틀) */
  --font-ko-main: 'Jeju Myeongjo', serif;
  --font-ko-sub: 'Jeju Myeongjo', serif;

  /* 영문 폰트 (장식 메인) */
  --font-en-main: 'Abigail', cursive;
}
