cheetah-tracks-font
v1.0.0
Published
Cheetah Tracks - A custom display typeface created for the Cheetah Conservation Fund (CCF)
Downloads
8
Maintainers
Readme
Cheetah Tracks Font
Cheetah 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.
Repository Structure
src/– source files (e.g. CheetahTracks.glyphs)dist/– production-ready webfont files and CSScheetah-tracks-regular.woff2cheetah-tracks-regular.woffcheetah-tracks.css
README.md– this file
Using the Font via CDN
Load the font stylesheet from jsDelivr (replace YOUR-ACCOUNT and v1.0.0 as needed):
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/YOUR-ACCOUNT/[email protected]/dist/cheetah-tracks.css">Then use the font in your CSS:
font-family: 'Cheetah Tracks', system-ui, sans-serif;Manual @font-face Option
If you prefer to define @font-face directly:
@font-face {
font-family: 'Cheetah Tracks';
src:
url('https://cdn.jsdelivr.net/gh/YOUR-ACCOUNT/[email protected]/dist/cheetah-tracks-regular.woff2') format('woff2'),
url('https://cdn.jsdelivr.net/gh/YOUR-ACCOUNT/[email protected]/dist/cheetah-tracks-regular.woff') format('woff');
font-weight: 400;
font-style: normal;
font-display: swap;
}Versioning
This project uses semantic versioning (v1.0.0, v1.1.0, etc.).
To publish a new version:
git add .
git commit -m "Describe changes"
git tag v1.x.x
git push origin main
git push origin v1.x.xEach tag is available via the CDN.
Updating the Font
- Open
src/CheetahTracks.glyphsin Glyphs. - Make updates (glyphs, kerning, spacing).
- Export WOFF2 and WOFF files into
dist/. - Update
cheetah-tracks.cssif needed. - Commit, tag, and push a new version.
License
Add licensing terms here. If the font is proprietary and restricted to CCF, specify that clearly.
