/**
 * subtle albatross branding for typedoc
 * only overrides font and adds minimal accent touches
 */

/* import archivo font */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700&display=swap');

/* apply archivo font globally - minimal change */
html {
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* subtle accent color for links on hover - only in light mode */
:root {
  --color-accent-subtle: #ff401a;
}

/* link hover effect - very subtle */
a:hover {
  color: var(--color-accent-subtle);
}

/* that's it - keep everything else default */
