/* Import Satoshi font */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,400,300&display=swap');

/* Import IBM Plex Mono font */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');

/* Apply Satoshi to all headings and page title */
h1, h2, h3, h4, h5, h6,
.markdown-preview-view h1,
.markdown-preview-view h2,
.markdown-preview-view h3,
.markdown-preview-view h4,
.markdown-preview-view h5,
.markdown-preview-view h6,
.page-title,
.inline-title {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Apply IBM Plex Mono to body text */
body,
p,
.markdown-preview-view,
.markdown-preview-view p {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
}

/* Customize link colors */
:root {
  --link-color: #070C14;
  --link-color-hover: #1a2332;
  --link-external-color: #070C14;
  --link-external-color-hover: #1a2332;
}

a,
.external-link {
  color: #070C14 !important;
}

a:hover,
.external-link:hover {
  color: #1a2332 !important;
}