/**
 * Aura Go 本地字体声明
 *
 * 两款字体均采用 SIL Open Font License 1.1，允许随主题一同分发与商业使用。
 * 许可全文见 assets/fonts/OFL.txt。
 *
 * 字体文件为可变字体（variable font），单个文件即可覆盖全部字重区间，
 * 相比多个静态字重文件显著减少请求数与总体积。
 *
 * 采用本地打包而非从 Google Fonts CDN 加载，原因有三：
 * 1. WordPress 主题审核规范要求主题资源自包含，不得远程加载
 * 2. 满足 GDPR 等隐私合规要求，避免访客 IP 暴露给第三方
 * 3. 保证在内网、离线或网络受限环境中的可用性
 *
 * 仅打包 latin 与 latin-ext 子集以控制体积；中日韩文字通过 font-family
 * 栈回退到系统字体（Noto Sans JP / Noto Sans SC / Hiragino Sans 等），
 * 这些字体在目标用户的设备上普遍预装，渲染效果稳定。
 *
 * @package AuraGo
 * @since   1.0.0
 */

/* ============================================================
 * Bricolage Grotesque —— 展示体，用于标题与强调文字
 * ============================================================ */

@font-face {
	font-family: "Bricolage Grotesque";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("bricolage-grotesque-latin-normal.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
		U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Bricolage Grotesque";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("bricolage-grotesque-latin-ext-normal.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
		U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
		U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ============================================================
 * DM Sans —— 正文体，用于段落、界面文字与表单
 * ============================================================ */

@font-face {
	font-family: "DM Sans";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("dm-sans-latin-normal.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
		U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "DM Sans";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("dm-sans-latin-ext-normal.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
		U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
		U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: "DM Sans";
	font-style: italic;
	font-weight: 400 500;
	font-display: swap;
	src: url("dm-sans-latin-italic.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
		U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "DM Sans";
	font-style: italic;
	font-weight: 400 500;
	font-display: swap;
	src: url("dm-sans-latin-ext-italic.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
		U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
		U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
