/*
  innobiz DUT typography
  Corporate Identity: Gill Sans (primary) + Bebas Neue (secondary/display).
  Gill Sans is resolved from the visitor's locally installed licensed font.
  Bebas Neue is loaded as a web font from Google Fonts with local fallbacks.
*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@font-face {
  font-family: "innobiz Gill";
  src: local("Gill Sans"), local("GillSans"), local("Gill Sans MT"), local("GillSansMT");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --body: "innobiz Gill", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", Arial, sans-serif;
  --display: "Bebas Neue", "Arial Narrow", "DIN Condensed", Impact, sans-serif;
}

body,
button,
input,
select,
textarea {
  font-family: var(--body);
}

h1,
h2,
.display,
.display-type,
[data-display-type] {
  font-family: var(--display);
}
