/* Apple Schriftart Einbindung */
/* Wir verwenden SF Pro Display als moderne Apple-Schriftart */
/* SF Pro Display ist eine Apple-Schriftart und wird über das Betriebssystem geladen */

/* Apple-Schriftart definieren */
:root {
    --myvt-font: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Klasse für Apple Schriftart */
.myvt-font {
    font-family: var(--myvt-font);
}