@font-face {
	font-family: 'Calibri';
	/* 自定义字体名称 */
	src: url('fonts/CALIBRI.TTF') format('truetype');
	/* 正常字体，路径需根据实际调整 */
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'CALIBRIB';
	src: url('fonts/CALIBRIB.TTF') format('truetype');
	/* 粗体（Bold） */
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'CALIBRII';
	src: url('fonts/CALIBRII.TTF') format('truetype');
	/* 斜体（Italic） */
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: 'CALIBRIL';
	src: url('fonts/CALIBRIL.TTF') format('truetype');
	/* 细体（Light，假设后缀 L 表示 Light） */
	font-weight: 300;
	/* 对应 Light 权重，可根据实际调整 */
	font-style: normal;
}

@font-face {
	font-family: 'CALIBRILI';
	src: url('fonts/CALIBRILI.TTF') format('truetype');
	/* 细体（Light，假设后缀 L 表示 Light） */
	font-weight: none;
	/* 对应 Light 权重，可根据实际调整 */
	font-style: normal;
}

@font-face {
	font-family: 'CALIBRIZ';
	src: url('fonts/CALIBRIZ.TTF') format('truetype');
	/* 其他样式（如 Condensed 等，根据实际命名调整） */
	font-weight: normal;
	font-style: normal;
	/* 若有特殊样式，需对应设置 */
}

@font-face {
  font-family: 'MiSans';
  /* src: url('/fonts/MiSans-Regular.woff2') format('woff2'), */
       url('/fonts/MiSans-Regular.woff') format('woff'),
       url('/fonts/MiSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 定义 MiSans Bold */
@font-face {
  font-family: 'MiSans';
  /* src: url('/fonts/MiSans-Bold.woff2') format('woff2'), */
       url('/fonts/MiSans-Bold.woff') format('woff'),
       url('/fonts/MiSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
