/**
 * Bimedi local fonts.
 * Required files in /assets/fonts/:
 * - manrope-variable.woff2
 * - lora-variable.woff2
 */

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --bimedi-font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bimedi-font-serif: "Lora", Georgia, serif;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--bimedi-font-sans);
}
