/* =========================================
   Indonesian base font stylesheet
   File: /css/lang_idn.css
========================================= */

/* 1) 구글 웹폰트 불러오기 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Sans:wght@400;700&display=swap');

/* 2) 폰트 변수 정의 */
:root {
  --font-sans: "Inter", "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
               "Liberation Mono", "Courier New", monospace;

  --fs-base: 13px;
  --lh-base: 1.6;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
}

/* 3) 기본 텍스트 */
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  font-weight: var(--fw-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 4) 제목 */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  margin: 0 0 0.5em;
}


/* 서브타이틀 */
#container_title h2{font-weight:400;}
.tab_btn li a{font-weight:400;}


