/*--------------------------------------------------------------
# Webfonts – Agenda (selbst gehostet)
--------------------------------------------------------------
  Die Schriften kamen urspruenglich von den CDNs cloud.webtype.com
  bzw. cloud.typenetwork.com. Beide Dienste liefern die Fonts nicht
  mehr aus (Webtype -> 404, Type Network -> 403 AccessDenied), die
  Seite fiel dadurch komplett auf die System-Sans zurueck.

  Alle benoetigten Schnitte liegen lokal in ../fonts/ und werden
  hier direkt eingebunden. Die Family-Namen sind exakt die, die im
  restlichen Theme-CSS verwendet werden ("Agenda Bla" ist der
  Original-Name aus dem Type-Network-Projekt fuer Agenda Black) –
  daran wurde bewusst nichts geaendert.

  Datei -> Family:
    agendalight-webfont   (Agenda-Light)   -> "Agenda Light"
    agendamedium-webfont  (Agenda-Medium)  -> "Agenda Medium"
    agendabold-webfont    (Agenda-Bold)    -> "Agenda", "Agenda Semibold"
    agendablack-webfont   (Agenda-Black)   -> "Agenda Bla", "Agenda Black"
--------------------------------------------------------------*/

@font-face {
	font-family: "Agenda Light";
	src: url("../fonts/agendalight-webfont.woff2") format("woff2"),
	     url("../fonts/agendalight-webfont.woff") format("woff");
	font-style: normal;
	font-weight: normal;
	font-display: swap;
}

@font-face {
	font-family: "Agenda Medium";
	src: url("../fonts/agendamedium-webfont.woff2") format("woff2"),
	     url("../fonts/agendamedium-webfont.woff") format("woff");
	font-style: normal;
	font-weight: normal;
	font-display: swap;
}

/* Ein echter Semibold-Schnitt liegt lokal nicht vor – Bold ist der
   naechstgelegene verfuegbare Schnitt. Wird derzeit im Theme-CSS
   nicht verwendet, bleibt aber fuer Inline-Styles deklariert. */
@font-face {
	font-family: "Agenda Semibold";
	src: url("../fonts/agendabold-webfont.woff2") format("woff2"),
	     url("../fonts/agendabold-webfont.woff") format("woff");
	font-style: normal;
	font-weight: normal;
	font-display: swap;
}

@font-face {
	font-family: "Agenda";
	src: url("../fonts/agendabold-webfont.woff2") format("woff2"),
	     url("../fonts/agendabold-webfont.woff") format("woff");
	font-style: normal;
	font-weight: bold;
	font-display: swap;
}

/* Headline-Schnitt: im Theme-CSS ueberall als "Agenda Bla"
   angesprochen (Slider-Headlines, Modal-H2, Isotope-Kacheln). */
@font-face {
	font-family: "Agenda Bla";
	src: url("../fonts/agendablack-webfont.woff2") format("woff2"),
	     url("../fonts/agendablack-webfont.woff") format("woff");
	font-style: normal;
	font-weight: normal;
	font-display: swap;
}

/* Alias unter dem sprechenden Namen, falls in Inhalten/Inline-Styles
   "Agenda Black" verwendet wird. */
@font-face {
	font-family: "Agenda Black";
	src: url("../fonts/agendablack-webfont.woff2") format("woff2"),
	     url("../fonts/agendablack-webfont.woff") format("woff");
	font-style: normal;
	font-weight: normal;
	font-display: swap;
}
