/**
 * @file
 * Font debugging styles
 */

/* Add a debug indicator when GAPZuidVG is loaded */
html.gapzuidvg-loaded {
  --font-debug: "GAPZuidVG Loaded";
}

html.gapzuidvg-loaded::before {
  content: "✓ GAPZuidVG Font Loaded";
  position: fixed;
  top: 0;
  right: 0;
  background: green;
  color: white;
  padding: 2px 5px;
  font-size: 10px;
  z-index: 9999;
  display: none; /* Hidden by default, enable for debugging */
}

/* Test styles to force font loading */
.font-test-gapzuidvg {
  font-family: "GAPZuidVG", serif;
  font-weight: 400;
}

.font-test-gapzuidvg-bold {
  font-family: "GAPZuidVG", serif;
  font-weight: 700;
}
