/*
 * CF Heizung — Ronzino (self-hosted)
 * Linked before app.css in every HTML file.
 */

@font-face {
  font-family: "Ronzino";
  font-weight: 400;
  font-style: normal;
  src: url("../public/assets/fonts/Ronzino-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Ronzino";
  font-weight: 500;
  font-style: normal;
  src: url("../public/assets/fonts/Ronzino-Medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Ronzino";
  font-weight: 600;
  font-style: normal;
  src: url("../public/assets/fonts/Ronzino-Medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Ronzino";
  font-weight: 700;
  font-style: normal;
  src: url("../public/assets/fonts/Ronzino-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Ronzino";
  font-weight: 800;
  font-style: normal;
  src: url("../public/assets/fonts/Ronzino-Bold.woff2") format("woff2");
  font-display: swap;
}

:root {
  --font-body: "Ronzino", system-ui, sans-serif;
  --font-display: "Ronzino", system-ui, sans-serif;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
}

html {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea,
select {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
.section-title,
.nav-link,
.btn {
  font-family: var(--font-display);
}
