/*
 * Rubik字体本地化CSS
 * 从Google Fonts下载字体文件并放置在本目录中
 * 下载地址：https://fonts.google.com/specimen/Rubik
 * 使用Google Web Fonts Helper工具：https://gwfh.mranftl.com/fonts/rubik
 *
 * 当前已下载字重：300, 400
 * 需要下载其他字重：500, 600, 700, 800, 900 及斜体版本
 */

/* rubik-300 - latin */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./rubik-v31-latin-300.woff2') format('woff2');
}

/* rubik-regular - latin */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./rubik-v31-latin-400.woff2') format('woff2');
}

/* rubik-500 - latin (已注释，需要下载字体文件) */
/*
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./rubik-v31-latin-500.woff2') format('woff2');
}
*/

/* rubik-600 - latin (已注释，需要下载字体文件) */
/*
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./rubik-v31-latin-600.woff2') format('woff2');
}
*/

/* rubik-700 - latin (已注释，需要下载字体文件) */
/*
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./rubik-v31-latin-700.woff2') format('woff2');
}
*/

/* rubik-800 - latin (已注释，需要下载字体文件) */
/*
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('./rubik-v31-latin-800.woff2') format('woff2');
}
*/

/* rubik-900 - latin (已注释，需要下载字体文件) */
/*
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('./rubik-v31-latin-900.woff2') format('woff2');
}
*/

/* 斜体版本需要单独下载 */

/* 字体优化：确保字体加载不影响渲染 */
body {
  font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}