/* ================================
   fonts.css
   - Heading: Kanit (Google Fonts)
   - Body: CS Prajad (OTF Local)
================================ */

/* 1) Import Kanit from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@400;600;700&family=Noto+Sans+Thai:wght@300;400;500;700&display=swap");

/* 2) CS Prajad (Regular) */


/* 6) Font variables */
:root {
  --font-heading: "Kanit", sans-serif;
  --font-body: "NotoSansThai", sans-serif;
}

/* 7) Default usage */
.font-heading {
  font-family: "Kanit", sans-serif;
}

.font-body {
  font-family: "NotoSansThai", serif;
}

/* 7) Default usage 
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}
*/