/* 本機 Poppins 字型（請把對應檔案放到 /wwwroot/fonts/poppins/） */
@font-face {
  font-family: "PoppinsLocal";
  src: url("/fonts/poppins/Poppins-Regular.woff2") format("woff2"),
       url("/fonts/poppins/Poppins-Regular.woff") format("woff"),
       url("/fonts/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsLocal";
  src: url("/fonts/poppins/Poppins-Medium.woff2") format("woff2"),
       url("/fonts/poppins/Poppins-Medium.woff") format("woff"),
       url("/fonts/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsLocal";
  src: url("/fonts/poppins/Poppins-SemiBold.woff2") format("woff2"),
       url("/fonts/poppins/Poppins-SemiBold.woff") format("woff"),
       url("/fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsLocal";
  src: url("/fonts/poppins/Poppins-Bold.woff2") format("woff2"),
       url("/fonts/poppins/Poppins-Bold.woff") format("woff"),
       url("/fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 若需要其他字重，請以相同方式增加 @font-face */