/**
 * === Merriweather — @font-face declarations (Accent Font) ===
 *
 * Mô tả: Khai báo self-hosted Merriweather serif cho rare accent use.
 *        Chỉ 2 variants: regular + italic. Dùng cho < 1% UI (quote/emphasis).
 *        FIX: Phiên bản cũ dùng "Merriweather Sans" với fallback serif — BUG đã sửa.
 *             Đúng phải là "Merriweather" (serif thuần) với fallback Georgia/serif.
 *
 * Flow:
 *   1. font-display: swap → không block render, fallback Georgia khi chưa load
 *   2. Chỉ load khi element có font-family: var(--font-accent) trong CSS
 *   3. Không có preload — accent font không ảnh hưởng LCP
 *
 * REQUIRES: File woff2 phải được tải thủ công theo hướng dẫn trong README.md
 */

/* Weight 400 Regular — base accent text */
@font-face {
  font-family: "Merriweather";
  src: url("./merriweather-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Weight 400 Italic — quote/emphasis styling (dùng với font-style: italic) */
@font-face {
  font-family: "Merriweather";
  src: url("./merriweather-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
