Cheetah Tracks - A custom display typeface created for the Cheetah Conservation Fund (CCF)
npm install cheetah-tracks-fontCheetah Tracks is a custom display typeface created for the Cheetah Conservation Fund (CCF). This repository contains the source Glyphs file, exported webfonts, and basic usage instructions.
- src/ – source files (e.g. CheetahTracks.glyphs)
- dist/ – production-ready webfont files and CSS
- cheetah-tracks-regular.woff2
- cheetah-tracks-regular.woff
- cheetah-tracks.css
- README.md – this file
Load the font stylesheet from jsDelivr (replace YOUR-ACCOUNT and v1.0.0 as needed):
``html`
Then use the font in your CSS:
`css`
font-family: 'Cheetah Tracks', system-ui, sans-serif;
If you prefer to define @font-face directly:
`css`
@font-face {
font-family: 'Cheetah Tracks';
src:
url('https://cdn.jsdelivr.net/gh/YOUR-ACCOUNT/cheetah-tracks-font@v1.0.0/dist/cheetah-tracks-regular.woff2') format('woff2'),
url('https://cdn.jsdelivr.net/gh/YOUR-ACCOUNT/cheetah-tracks-font@v1.0.0/dist/cheetah-tracks-regular.woff') format('woff');
font-weight: 400;
font-style: normal;
font-display: swap;
}
This project uses semantic versioning (v1.0.0, v1.1.0, etc.).
To publish a new version:
`bash`
git add .
git commit -m "Describe changes"
git tag v1.x.x
git push origin main
git push origin v1.x.x
Each tag is available via the CDN.
1. Open src/CheetahTracks.glyphs in Glyphs.dist/
2. Make updates (glyphs, kerning, spacing).
3. Export WOFF2 and WOFF files into .cheetah-tracks.css` if needed.
4. Update
5. Commit, tag, and push a new version.
Add licensing terms here. If the font is proprietary and restricted to CCF, specify that clearly.