/* ========================================
   聆貅 LINGXIU — Font Loading Strategy
   System fonts first (instant), decorative web fonts async.
   ======================================== */

/* ── System Chinese Serif (replaces Noto Serif SC) ── */
/* macOS: Songti SC | Windows: SimSun | Android: Noto Serif CJK SC */
@font-face {
  font-family: 'Lingxiu Serif CN';
  src: local('Songti SC'), local('SimSun'), local('Noto Serif CJK SC'), local('serif');
  font-display: swap;
}

/* ── System Chinese Sans (replaces Noto Sans SC) ── */
/* macOS: PingFang SC | Windows: Microsoft YaHei | Android: Noto Sans CJK SC */
@font-face {
  font-family: 'Lingxiu Sans CN';
  src: local('PingFang SC'), local('Microsoft YaHei'), local('Noto Sans CJK SC'), local('sans-serif');
  font-display: swap;
}

/* ── System English Sans (replaces Inter) ── */
@font-face {
  font-family: 'Lingxiu Sans EN';
  src: local('Inter'), local('system-ui'), local('-apple-system'), local('sans-serif');
  font-display: swap;
}

/* ── Decorative English Serif (async load from Google) ── */
/* Only Oranienbaum and Cinzel are loaded from web — used for brand name */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Oranienbaum&display=swap') layer(decorative);
