├── .github └── workflows │ └── build.yaml ├── .gitignore ├── AUTHORS.txt ├── CONTRIBUTORS.txt ├── FONTLOG.txt ├── LICENSE.md └── LICENSE.md ├── Makefile ├── OFL.txt ├── README.md ├── TRADEMARKS.md ├── documentation └── img │ ├── mohave-1.png │ ├── mohave-2.png │ ├── mohave-3.png │ ├── mohave-4.png │ ├── mohave-5.png │ ├── mohave-6.png │ ├── mohave-7.png │ ├── mohave-8.png │ └── mohave-9.png ├── fonts ├── otf │ ├── Mohave-Bold.otf │ ├── Mohave-BoldItalic.otf │ ├── Mohave-Italic.otf │ ├── Mohave-Light.otf │ ├── Mohave-LightItalic.otf │ ├── Mohave-Medium.otf │ ├── Mohave-MediumItalic.otf │ ├── Mohave-Regular.otf │ ├── Mohave-SemiBold.otf │ └── Mohave-SemiBoldItalic.otf ├── ttf │ ├── Mohave-Bold.ttf │ ├── Mohave-BoldItalic.ttf │ ├── Mohave-Italic.ttf │ ├── Mohave-Light.ttf │ ├── Mohave-LightItalic.ttf │ ├── Mohave-Medium.ttf │ ├── Mohave-MediumItalic.ttf │ ├── Mohave-Regular.ttf │ ├── Mohave-SemiBold.ttf │ └── Mohave-SemiBoldItalic.ttf ├── variable │ ├── Mohave-Italic[wght].ttf │ └── Mohave[wght].ttf └── webfonts │ ├── Mohave-Bold.woff2 │ ├── Mohave-BoldItalic.woff2 │ ├── Mohave-Italic.woff2 │ ├── Mohave-Light.woff2 │ ├── Mohave-LightItalic.woff2 │ ├── Mohave-Medium.woff2 │ ├── Mohave-MediumItalic.woff2 │ ├── Mohave-Regular.woff2 │ ├── Mohave-SemiBold.woff2 │ └── Mohave-SemiBoldItalic.woff2 ├── old-version ├── old-version └── version 1.000 │ └── fonts │ └── otf │ ├── Mohave Italics.otf │ ├── Mohave-Bold Italics.otf │ ├── Mohave-Bold.otf │ ├── Mohave-SemiBold Italics.otf │ ├── Mohave-SemiBold.otf │ └── Mohave.otf ├── requirements.txt └── sources ├── Mohave-Italic.glyphs ├── Mohave.glyphs └── config.yaml /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /FONTLOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/FONTLOG.txt -------------------------------------------------------------------------------- /LICENSE.md/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/LICENSE.md/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/Makefile -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/README.md -------------------------------------------------------------------------------- /TRADEMARKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/TRADEMARKS.md -------------------------------------------------------------------------------- /documentation/img/mohave-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/documentation/img/mohave-1.png -------------------------------------------------------------------------------- /documentation/img/mohave-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/documentation/img/mohave-2.png -------------------------------------------------------------------------------- /documentation/img/mohave-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/documentation/img/mohave-3.png -------------------------------------------------------------------------------- /documentation/img/mohave-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/documentation/img/mohave-4.png -------------------------------------------------------------------------------- /documentation/img/mohave-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/documentation/img/mohave-5.png -------------------------------------------------------------------------------- /documentation/img/mohave-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/documentation/img/mohave-6.png -------------------------------------------------------------------------------- /documentation/img/mohave-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/documentation/img/mohave-7.png -------------------------------------------------------------------------------- /documentation/img/mohave-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/documentation/img/mohave-8.png -------------------------------------------------------------------------------- /documentation/img/mohave-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/documentation/img/mohave-9.png -------------------------------------------------------------------------------- /fonts/otf/Mohave-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/otf/Mohave-Bold.otf -------------------------------------------------------------------------------- /fonts/otf/Mohave-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/otf/Mohave-BoldItalic.otf -------------------------------------------------------------------------------- /fonts/otf/Mohave-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/otf/Mohave-Italic.otf -------------------------------------------------------------------------------- /fonts/otf/Mohave-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/otf/Mohave-Light.otf -------------------------------------------------------------------------------- /fonts/otf/Mohave-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/otf/Mohave-LightItalic.otf -------------------------------------------------------------------------------- /fonts/otf/Mohave-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/otf/Mohave-Medium.otf -------------------------------------------------------------------------------- /fonts/otf/Mohave-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/otf/Mohave-MediumItalic.otf -------------------------------------------------------------------------------- /fonts/otf/Mohave-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/otf/Mohave-Regular.otf -------------------------------------------------------------------------------- /fonts/otf/Mohave-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/otf/Mohave-SemiBold.otf -------------------------------------------------------------------------------- /fonts/otf/Mohave-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/otf/Mohave-SemiBoldItalic.otf -------------------------------------------------------------------------------- /fonts/ttf/Mohave-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/ttf/Mohave-Bold.ttf -------------------------------------------------------------------------------- /fonts/ttf/Mohave-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/ttf/Mohave-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/ttf/Mohave-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/ttf/Mohave-Italic.ttf -------------------------------------------------------------------------------- /fonts/ttf/Mohave-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/ttf/Mohave-Light.ttf -------------------------------------------------------------------------------- /fonts/ttf/Mohave-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/ttf/Mohave-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/ttf/Mohave-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/ttf/Mohave-Medium.ttf -------------------------------------------------------------------------------- /fonts/ttf/Mohave-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/ttf/Mohave-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/ttf/Mohave-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/ttf/Mohave-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/Mohave-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/ttf/Mohave-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/ttf/Mohave-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/ttf/Mohave-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/variable/Mohave-Italic[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/variable/Mohave-Italic[wght].ttf -------------------------------------------------------------------------------- /fonts/variable/Mohave[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/variable/Mohave[wght].ttf -------------------------------------------------------------------------------- /fonts/webfonts/Mohave-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/webfonts/Mohave-Bold.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Mohave-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/webfonts/Mohave-BoldItalic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Mohave-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/webfonts/Mohave-Italic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Mohave-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/webfonts/Mohave-Light.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Mohave-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/webfonts/Mohave-LightItalic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Mohave-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/webfonts/Mohave-Medium.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Mohave-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/webfonts/Mohave-MediumItalic.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Mohave-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/webfonts/Mohave-Regular.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Mohave-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/webfonts/Mohave-SemiBold.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Mohave-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/fonts/webfonts/Mohave-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /old-version/old-version: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /old-version/version 1.000/fonts/otf/Mohave Italics.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/old-version/version 1.000/fonts/otf/Mohave Italics.otf -------------------------------------------------------------------------------- /old-version/version 1.000/fonts/otf/Mohave-Bold Italics.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/old-version/version 1.000/fonts/otf/Mohave-Bold Italics.otf -------------------------------------------------------------------------------- /old-version/version 1.000/fonts/otf/Mohave-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/old-version/version 1.000/fonts/otf/Mohave-Bold.otf -------------------------------------------------------------------------------- /old-version/version 1.000/fonts/otf/Mohave-SemiBold Italics.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/old-version/version 1.000/fonts/otf/Mohave-SemiBold Italics.otf -------------------------------------------------------------------------------- /old-version/version 1.000/fonts/otf/Mohave-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/old-version/version 1.000/fonts/otf/Mohave-SemiBold.otf -------------------------------------------------------------------------------- /old-version/version 1.000/fonts/otf/Mohave.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/old-version/version 1.000/fonts/otf/Mohave.otf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/requirements.txt -------------------------------------------------------------------------------- /sources/Mohave-Italic.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/sources/Mohave-Italic.glyphs -------------------------------------------------------------------------------- /sources/Mohave.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/sources/Mohave.glyphs -------------------------------------------------------------------------------- /sources/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokotype/Mohave-Typefaces/HEAD/sources/config.yaml --------------------------------------------------------------------------------