├── .gitignore ├── AUTHOR.txt ├── CONTRIBUTORS.txt ├── OFL.txt ├── README.md ├── demos ├── letterweight.html ├── variable-letterweight.html └── variable-wordweight.html ├── documentation ├── animated-sono.gif ├── sono-compare-v1.jpg ├── sono-compare-v2.jpg ├── sono-extras.png ├── sono-hey.gif ├── sono-pangram.png └── sono-words.gif ├── fonts ├── otf │ ├── Sono-Bold.otf │ ├── Sono-ExtraBold.otf │ ├── Sono-ExtraLight.otf │ ├── Sono-Light.otf │ ├── Sono-Medium.otf │ ├── Sono-Regular.otf │ ├── Sono-SemiBold.otf │ ├── SonoSans-Bold.otf │ ├── SonoSans-ExtraBold.otf │ ├── SonoSans-ExtraLight.otf │ ├── SonoSans-Light.otf │ ├── SonoSans-Medium.otf │ ├── SonoSans-Regular.otf │ └── SonoSans-SemiBold.otf ├── ttf │ ├── Sono-Bold.ttf │ ├── Sono-ExtraBold.ttf │ ├── Sono-ExtraLight.ttf │ ├── Sono-Light.ttf │ ├── Sono-Medium.ttf │ ├── Sono-Regular.ttf │ ├── Sono-SemiBold.ttf │ ├── SonoSans-Bold.ttf │ ├── SonoSans-ExtraBold.ttf │ ├── SonoSans-ExtraLight.ttf │ ├── SonoSans-Light.ttf │ ├── SonoSans-Medium.ttf │ ├── SonoSans-Regular.ttf │ └── SonoSans-SemiBold.ttf ├── variable │ └── Sono[MONO,wght].ttf └── webfonts │ ├── Sono-Bold.woff2 │ ├── Sono-ExtraBold.woff2 │ ├── Sono-ExtraLight.woff2 │ ├── Sono-Light.woff2 │ ├── Sono-Medium.woff2 │ ├── Sono-Regular.woff2 │ ├── Sono-SemiBold.woff2 │ ├── SonoSans-Bold.woff2 │ ├── SonoSans-ExtraBold.woff2 │ ├── SonoSans-ExtraLight.woff2 │ ├── SonoSans-Light.woff2 │ ├── SonoSans-Medium.woff2 │ ├── SonoSans-Regular.woff2 │ └── SonoSans-SemiBold.woff2 ├── funding.yml ├── old ├── v1 │ ├── otf │ │ ├── Sono-Bold.otf │ │ ├── Sono-ExtraBold.otf │ │ ├── Sono-ExtraLight.otf │ │ ├── Sono-Light.otf │ │ ├── Sono-Medium.otf │ │ ├── Sono-Regular.otf │ │ └── Sono-SemiBold.otf │ ├── ttf │ │ ├── Sono-Bold.ttf │ │ ├── Sono-ExtraBold.ttf │ │ ├── Sono-ExtraLight.ttf │ │ ├── Sono-Light.ttf │ │ ├── Sono-Medium.ttf │ │ ├── Sono-Regular.ttf │ │ └── Sono-SemiBold.ttf │ ├── variable │ │ ├── SonoVariable.woff2 │ │ ├── sono[wght].ttf │ │ └── sono[wght].woff2 │ └── web │ │ ├── Sono-Bold.woff │ │ ├── Sono-Bold.woff2 │ │ ├── Sono-ExtraBold.woff │ │ ├── Sono-ExtraBold.woff2 │ │ ├── Sono-ExtraLight.woff │ │ ├── Sono-ExtraLight.woff2 │ │ ├── Sono-Light.woff │ │ ├── Sono-Light.woff2 │ │ ├── Sono-Medium.woff │ │ ├── Sono-Medium.woff2 │ │ ├── Sono-Regular.woff │ │ ├── Sono-Regular.woff2 │ │ ├── Sono-SemiBold.woff │ │ └── Sono-SemiBold.woff2 └── v2 │ ├── otf │ ├── Sono-Bold.otf │ ├── Sono-ExtraBold.otf │ ├── Sono-ExtraLight.otf │ ├── Sono-Light.otf │ ├── Sono-Medium.otf │ ├── Sono-Regular.otf │ ├── Sono-SansBold.otf │ ├── Sono-SansExtraBold.otf │ ├── Sono-SansExtraLight.otf │ ├── Sono-SansLight.otf │ ├── Sono-SansMedium.otf │ ├── Sono-SansRegular.otf │ ├── Sono-SansSemiBold.otf │ └── Sono-SemiBold.otf │ ├── ttf │ ├── Sono-Bold.ttf │ ├── Sono-ExtraBold.ttf │ ├── Sono-ExtraLight.ttf │ ├── Sono-Light.ttf │ ├── Sono-Medium.ttf │ ├── Sono-Regular.ttf │ ├── Sono-SansBold.ttf │ ├── Sono-SansExtraBold.ttf │ ├── Sono-SansExtraLight.ttf │ ├── Sono-SansLight.ttf │ ├── Sono-SansMedium.ttf │ ├── Sono-SansRegular.ttf │ ├── Sono-SansSemiBold.ttf │ └── Sono-SemiBold.ttf │ ├── variable │ ├── Sono-Variable.ttf │ └── Sono-Variable.woff2 │ └── web │ ├── Sono-Bold.woff2 │ ├── Sono-ExtraBold.woff2 │ ├── Sono-ExtraLight.woff2 │ ├── Sono-Light.woff2 │ ├── Sono-Medium.woff2 │ ├── Sono-Regular.woff2 │ ├── Sono-SansBold.woff2 │ ├── Sono-SansExtraBold.woff2 │ ├── Sono-SansExtraLight.woff2 │ ├── Sono-SansLight.woff2 │ ├── Sono-SansMedium.woff2 │ ├── Sono-SansRegular.woff2 │ ├── Sono-SansSemiBold.woff2 │ └── Sono-SemiBold.woff2 └── sources ├── config.yaml └── sono.glyphs /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /AUTHOR.txt: -------------------------------------------------------------------------------- 1 | # This is the official list of project authors for copyright purposes. 2 | # This file is distinct from the CONTRIBUTORS.txt file. 3 | # See the latter for an explanation. 4 | # 5 | # Names should be added to this file as: 6 | # Name or Organization 7 | 8 | Tyler Finck 9 | -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- 1 | # This is the official list of project authors for copyright purposes. 2 | # This file is distinct from the CONTRIBUTORS.txt file. 3 | # See the latter for an explanation. 4 | # 5 | # Names should be added to this file as: 6 | # Name or Organization 7 | 8 | Tyler Finck 9 | Rosalie Wagner 10 | Emma Marichal -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- 1 | Copyright 2020 The Sono Project Authors (https://github.com/sursly/sono) 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | https://scripts.sil.org/OFL 6 | 7 | 8 | ----------------------------------------------------------- 9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 10 | ----------------------------------------------------------- 11 | 12 | PREAMBLE 13 | The goals of the Open Font License (OFL) are to stimulate worldwide 14 | development of collaborative font projects, to support the font creation 15 | efforts of academic and linguistic communities, and to provide a free and 16 | open framework in which fonts may be shared and improved in partnership 17 | with others. 18 | 19 | The OFL allows the licensed fonts to be used, studied, modified and 20 | redistributed freely as long as they are not sold by themselves. The 21 | fonts, including any derivative works, can be bundled, embedded, 22 | redistributed and/or sold with any software provided that any reserved 23 | names are not used by derivative works. The fonts and derivatives, 24 | however, cannot be released under any other type of license. The 25 | requirement for fonts to remain under this license does not apply 26 | to any document created using the fonts or their derivatives. 27 | 28 | DEFINITIONS 29 | "Font Software" refers to the set of files released by the Copyright 30 | Holder(s) under this license and clearly marked as such. This may 31 | include source files, build scripts and documentation. 32 | 33 | "Reserved Font Name" refers to any names specified as such after the 34 | copyright statement(s). 35 | 36 | "Original Version" refers to the collection of Font Software components as 37 | distributed by the Copyright Holder(s). 38 | 39 | "Modified Version" refers to any derivative made by adding to, deleting, 40 | or substituting -- in part or in whole -- any of the components of the 41 | Original Version, by changing formats or by porting the Font Software to a 42 | new environment. 43 | 44 | "Author" refers to any designer, engineer, programmer, technical 45 | writer or other person who contributed to the Font Software. 46 | 47 | PERMISSION & CONDITIONS 48 | Permission is hereby granted, free of charge, to any person obtaining 49 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 50 | redistribute, and sell modified and unmodified copies of the Font 51 | Software, subject to the following conditions: 52 | 53 | 1) Neither the Font Software nor any of its individual components, 54 | in Original or Modified Versions, may be sold by itself. 55 | 56 | 2) Original or Modified Versions of the Font Software may be bundled, 57 | redistributed and/or sold with any software, provided that each copy 58 | contains the above copyright notice and this license. These can be 59 | included either as stand-alone text files, human-readable headers or 60 | in the appropriate machine-readable metadata fields within text or 61 | binary files as long as those fields can be easily viewed by the user. 62 | 63 | 3) No Modified Version of the Font Software may use the Reserved Font 64 | Name(s) unless explicit written permission is granted by the corresponding 65 | Copyright Holder. This restriction only applies to the primary font name as 66 | presented to the users. 67 | 68 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 69 | Software shall not be used to promote, endorse or advertise any 70 | Modified Version, except to acknowledge the contribution(s) of the 71 | Copyright Holder(s) and the Author(s) or with their explicit written 72 | permission. 73 | 74 | 5) The Font Software, modified or unmodified, in part or in whole, 75 | must be distributed entirely under this license, and must not be 76 | distributed under any other license. The requirement for fonts to 77 | remain under this license does not apply to any document created 78 | using the Font Software. 79 | 80 | TERMINATION 81 | This license becomes null and void if any of the above conditions are 82 | not met. 83 | 84 | DISCLAIMER 85 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 86 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 87 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 88 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 89 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 90 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 91 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 92 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 93 | OTHER DEALINGS IN THE FONT SOFTWARE. 94 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # sono 2 | A soft monospace (or proportional!) variable font by [ty](https://tyfromtheinternet.com) 3 | 4 | ![Animated weights of sono](documentation/sono-hey.gif "animated weights") 5 | 6 | Seven weights: ExtraLight through ExtraBold. Sono Sans is proportional width glyphs/spacing with kerning. Sono is fixed-width (and obviously not kerned). Variable version (mono, wght) works in Figma 👍 Soon to be on Google Fonts. 7 | 8 | ![Sample of Sono Family.](documentation/animated-sono.gif "animated sono") 9 | ![Animated Sono.](documentation/sono-words.gif "another animated sono") 10 | 11 | These gifs are made from screen recordings of two demo html pages I've included in this repository. 12 | 13 | ![Comparing weights and axes](documentation/sono-compare-v1.jpg "comparing") 14 | ![Monospace vs proportional](documentation/sono-compare-v2.jpg "monospace vs proportional") 15 | -------------------------------------------------------------------------------- /demos/letterweight.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Sono - Demo Page 8 | 9 | 10 | 11 | 113 | 114 | 115 | 116 | 117 | 118 |
119 |
Sono
120 | 121 |
    122 |
  • hey
  • 123 |
  • hey
  • 124 |
  • hey
  • 125 |
  • hey
  • 126 |
  • hey
  • 127 |
  • hey
  • 128 |
  • hey
  • 129 |
130 |
131 | 132 | 133 | -------------------------------------------------------------------------------- /demos/variable-letterweight.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Sono - Demo Page 8 | 9 | 10 | 11 | 88 | 89 | 90 | 91 | 92 | 93 |
94 |
Sono
95 |
    96 |
  • produce
  • 97 | 98 |
  • context
  • 99 |
100 | 101 | 102 |
103 | 104 | 105 | -------------------------------------------------------------------------------- /demos/variable-wordweight.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Sono - Demo Page 8 | 9 | 10 | 11 | 65 | 66 | 67 | 68 | 69 | 70 |
71 |
Sono
72 | 73 |
    74 |
  • california
  • 75 |
  • obligatory
  • 76 |
  • crescendos
  • 77 |
  • literature
  • 78 |
  • skateboard
  • 79 |
  • revolution
  • 80 |
  • silhouette
  • 81 |
82 |
83 | 84 | 85 | -------------------------------------------------------------------------------- /documentation/animated-sono.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/documentation/animated-sono.gif -------------------------------------------------------------------------------- /documentation/sono-compare-v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/documentation/sono-compare-v1.jpg -------------------------------------------------------------------------------- /documentation/sono-compare-v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/documentation/sono-compare-v2.jpg -------------------------------------------------------------------------------- /documentation/sono-extras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/documentation/sono-extras.png -------------------------------------------------------------------------------- /documentation/sono-hey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/documentation/sono-hey.gif -------------------------------------------------------------------------------- /documentation/sono-pangram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/documentation/sono-pangram.png -------------------------------------------------------------------------------- /documentation/sono-words.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/documentation/sono-words.gif -------------------------------------------------------------------------------- /fonts/otf/Sono-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/otf/Sono-Bold.otf -------------------------------------------------------------------------------- /fonts/otf/Sono-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/otf/Sono-ExtraBold.otf -------------------------------------------------------------------------------- /fonts/otf/Sono-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/otf/Sono-ExtraLight.otf -------------------------------------------------------------------------------- /fonts/otf/Sono-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/otf/Sono-Light.otf -------------------------------------------------------------------------------- /fonts/otf/Sono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/otf/Sono-Medium.otf -------------------------------------------------------------------------------- /fonts/otf/Sono-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/otf/Sono-Regular.otf -------------------------------------------------------------------------------- /fonts/otf/Sono-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/otf/Sono-SemiBold.otf -------------------------------------------------------------------------------- /fonts/otf/SonoSans-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/otf/SonoSans-Bold.otf -------------------------------------------------------------------------------- /fonts/otf/SonoSans-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/otf/SonoSans-ExtraBold.otf -------------------------------------------------------------------------------- /fonts/otf/SonoSans-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/otf/SonoSans-ExtraLight.otf -------------------------------------------------------------------------------- /fonts/otf/SonoSans-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/otf/SonoSans-Light.otf -------------------------------------------------------------------------------- /fonts/otf/SonoSans-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/otf/SonoSans-Medium.otf -------------------------------------------------------------------------------- /fonts/otf/SonoSans-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/otf/SonoSans-Regular.otf -------------------------------------------------------------------------------- /fonts/otf/SonoSans-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/otf/SonoSans-SemiBold.otf -------------------------------------------------------------------------------- /fonts/ttf/Sono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/ttf/Sono-Bold.ttf -------------------------------------------------------------------------------- /fonts/ttf/Sono-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/ttf/Sono-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/ttf/Sono-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/ttf/Sono-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/ttf/Sono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/ttf/Sono-Light.ttf -------------------------------------------------------------------------------- /fonts/ttf/Sono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/ttf/Sono-Medium.ttf -------------------------------------------------------------------------------- /fonts/ttf/Sono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/ttf/Sono-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/Sono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/ttf/Sono-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/ttf/SonoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/ttf/SonoSans-Bold.ttf -------------------------------------------------------------------------------- /fonts/ttf/SonoSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/ttf/SonoSans-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/ttf/SonoSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/ttf/SonoSans-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/ttf/SonoSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/ttf/SonoSans-Light.ttf -------------------------------------------------------------------------------- /fonts/ttf/SonoSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/ttf/SonoSans-Medium.ttf -------------------------------------------------------------------------------- /fonts/ttf/SonoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/ttf/SonoSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/SonoSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/ttf/SonoSans-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/variable/Sono[MONO,wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/variable/Sono[MONO,wght].ttf -------------------------------------------------------------------------------- /fonts/webfonts/Sono-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/webfonts/Sono-Bold.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Sono-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/webfonts/Sono-ExtraBold.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Sono-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/webfonts/Sono-ExtraLight.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Sono-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/webfonts/Sono-Light.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Sono-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/webfonts/Sono-Medium.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Sono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/webfonts/Sono-Regular.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/Sono-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/webfonts/Sono-SemiBold.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/SonoSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/webfonts/SonoSans-Bold.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/SonoSans-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/webfonts/SonoSans-ExtraBold.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/SonoSans-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/webfonts/SonoSans-ExtraLight.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/SonoSans-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/webfonts/SonoSans-Light.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/SonoSans-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/webfonts/SonoSans-Medium.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/SonoSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/webfonts/SonoSans-Regular.woff2 -------------------------------------------------------------------------------- /fonts/webfonts/SonoSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/fonts/webfonts/SonoSans-SemiBold.woff2 -------------------------------------------------------------------------------- /funding.yml: -------------------------------------------------------------------------------- 1 | github: [sursly] 2 | custom: ["https://www.paypal.me/tylerfinck"] 3 | -------------------------------------------------------------------------------- /old/v1/otf/Sono-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/otf/Sono-Bold.otf -------------------------------------------------------------------------------- /old/v1/otf/Sono-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/otf/Sono-ExtraBold.otf -------------------------------------------------------------------------------- /old/v1/otf/Sono-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/otf/Sono-ExtraLight.otf -------------------------------------------------------------------------------- /old/v1/otf/Sono-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/otf/Sono-Light.otf -------------------------------------------------------------------------------- /old/v1/otf/Sono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/otf/Sono-Medium.otf -------------------------------------------------------------------------------- /old/v1/otf/Sono-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/otf/Sono-Regular.otf -------------------------------------------------------------------------------- /old/v1/otf/Sono-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/otf/Sono-SemiBold.otf -------------------------------------------------------------------------------- /old/v1/ttf/Sono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/ttf/Sono-Bold.ttf -------------------------------------------------------------------------------- /old/v1/ttf/Sono-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/ttf/Sono-ExtraBold.ttf -------------------------------------------------------------------------------- /old/v1/ttf/Sono-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/ttf/Sono-ExtraLight.ttf -------------------------------------------------------------------------------- /old/v1/ttf/Sono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/ttf/Sono-Light.ttf -------------------------------------------------------------------------------- /old/v1/ttf/Sono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/ttf/Sono-Medium.ttf -------------------------------------------------------------------------------- /old/v1/ttf/Sono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/ttf/Sono-Regular.ttf -------------------------------------------------------------------------------- /old/v1/ttf/Sono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/ttf/Sono-SemiBold.ttf -------------------------------------------------------------------------------- /old/v1/variable/SonoVariable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/variable/SonoVariable.woff2 -------------------------------------------------------------------------------- /old/v1/variable/sono[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/variable/sono[wght].ttf -------------------------------------------------------------------------------- /old/v1/variable/sono[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/variable/sono[wght].woff2 -------------------------------------------------------------------------------- /old/v1/web/Sono-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/web/Sono-Bold.woff -------------------------------------------------------------------------------- /old/v1/web/Sono-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/web/Sono-Bold.woff2 -------------------------------------------------------------------------------- /old/v1/web/Sono-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/web/Sono-ExtraBold.woff -------------------------------------------------------------------------------- /old/v1/web/Sono-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/web/Sono-ExtraBold.woff2 -------------------------------------------------------------------------------- /old/v1/web/Sono-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/web/Sono-ExtraLight.woff -------------------------------------------------------------------------------- /old/v1/web/Sono-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/web/Sono-ExtraLight.woff2 -------------------------------------------------------------------------------- /old/v1/web/Sono-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/web/Sono-Light.woff -------------------------------------------------------------------------------- /old/v1/web/Sono-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/web/Sono-Light.woff2 -------------------------------------------------------------------------------- /old/v1/web/Sono-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/web/Sono-Medium.woff -------------------------------------------------------------------------------- /old/v1/web/Sono-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/web/Sono-Medium.woff2 -------------------------------------------------------------------------------- /old/v1/web/Sono-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/web/Sono-Regular.woff -------------------------------------------------------------------------------- /old/v1/web/Sono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/web/Sono-Regular.woff2 -------------------------------------------------------------------------------- /old/v1/web/Sono-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/web/Sono-SemiBold.woff -------------------------------------------------------------------------------- /old/v1/web/Sono-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v1/web/Sono-SemiBold.woff2 -------------------------------------------------------------------------------- /old/v2/otf/Sono-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/otf/Sono-Bold.otf -------------------------------------------------------------------------------- /old/v2/otf/Sono-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/otf/Sono-ExtraBold.otf -------------------------------------------------------------------------------- /old/v2/otf/Sono-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/otf/Sono-ExtraLight.otf -------------------------------------------------------------------------------- /old/v2/otf/Sono-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/otf/Sono-Light.otf -------------------------------------------------------------------------------- /old/v2/otf/Sono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/otf/Sono-Medium.otf -------------------------------------------------------------------------------- /old/v2/otf/Sono-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/otf/Sono-Regular.otf -------------------------------------------------------------------------------- /old/v2/otf/Sono-SansBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/otf/Sono-SansBold.otf -------------------------------------------------------------------------------- /old/v2/otf/Sono-SansExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/otf/Sono-SansExtraBold.otf -------------------------------------------------------------------------------- /old/v2/otf/Sono-SansExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/otf/Sono-SansExtraLight.otf -------------------------------------------------------------------------------- /old/v2/otf/Sono-SansLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/otf/Sono-SansLight.otf -------------------------------------------------------------------------------- /old/v2/otf/Sono-SansMedium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/otf/Sono-SansMedium.otf -------------------------------------------------------------------------------- /old/v2/otf/Sono-SansRegular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/otf/Sono-SansRegular.otf -------------------------------------------------------------------------------- /old/v2/otf/Sono-SansSemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/otf/Sono-SansSemiBold.otf -------------------------------------------------------------------------------- /old/v2/otf/Sono-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/otf/Sono-SemiBold.otf -------------------------------------------------------------------------------- /old/v2/ttf/Sono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/ttf/Sono-Bold.ttf -------------------------------------------------------------------------------- /old/v2/ttf/Sono-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/ttf/Sono-ExtraBold.ttf -------------------------------------------------------------------------------- /old/v2/ttf/Sono-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/ttf/Sono-ExtraLight.ttf -------------------------------------------------------------------------------- /old/v2/ttf/Sono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/ttf/Sono-Light.ttf -------------------------------------------------------------------------------- /old/v2/ttf/Sono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/ttf/Sono-Medium.ttf -------------------------------------------------------------------------------- /old/v2/ttf/Sono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/ttf/Sono-Regular.ttf -------------------------------------------------------------------------------- /old/v2/ttf/Sono-SansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/ttf/Sono-SansBold.ttf -------------------------------------------------------------------------------- /old/v2/ttf/Sono-SansExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/ttf/Sono-SansExtraBold.ttf -------------------------------------------------------------------------------- /old/v2/ttf/Sono-SansExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/ttf/Sono-SansExtraLight.ttf -------------------------------------------------------------------------------- /old/v2/ttf/Sono-SansLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/ttf/Sono-SansLight.ttf -------------------------------------------------------------------------------- /old/v2/ttf/Sono-SansMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/ttf/Sono-SansMedium.ttf -------------------------------------------------------------------------------- /old/v2/ttf/Sono-SansRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/ttf/Sono-SansRegular.ttf -------------------------------------------------------------------------------- /old/v2/ttf/Sono-SansSemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/ttf/Sono-SansSemiBold.ttf -------------------------------------------------------------------------------- /old/v2/ttf/Sono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/ttf/Sono-SemiBold.ttf -------------------------------------------------------------------------------- /old/v2/variable/Sono-Variable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/variable/Sono-Variable.ttf -------------------------------------------------------------------------------- /old/v2/variable/Sono-Variable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/variable/Sono-Variable.woff2 -------------------------------------------------------------------------------- /old/v2/web/Sono-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/web/Sono-Bold.woff2 -------------------------------------------------------------------------------- /old/v2/web/Sono-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/web/Sono-ExtraBold.woff2 -------------------------------------------------------------------------------- /old/v2/web/Sono-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/web/Sono-ExtraLight.woff2 -------------------------------------------------------------------------------- /old/v2/web/Sono-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/web/Sono-Light.woff2 -------------------------------------------------------------------------------- /old/v2/web/Sono-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/web/Sono-Medium.woff2 -------------------------------------------------------------------------------- /old/v2/web/Sono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/web/Sono-Regular.woff2 -------------------------------------------------------------------------------- /old/v2/web/Sono-SansBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/web/Sono-SansBold.woff2 -------------------------------------------------------------------------------- /old/v2/web/Sono-SansExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/web/Sono-SansExtraBold.woff2 -------------------------------------------------------------------------------- /old/v2/web/Sono-SansExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/web/Sono-SansExtraLight.woff2 -------------------------------------------------------------------------------- /old/v2/web/Sono-SansLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/web/Sono-SansLight.woff2 -------------------------------------------------------------------------------- /old/v2/web/Sono-SansMedium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/web/Sono-SansMedium.woff2 -------------------------------------------------------------------------------- /old/v2/web/Sono-SansRegular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/web/Sono-SansRegular.woff2 -------------------------------------------------------------------------------- /old/v2/web/Sono-SansSemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/web/Sono-SansSemiBold.woff2 -------------------------------------------------------------------------------- /old/v2/web/Sono-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sursly/sono/7dc859025b464e8530d90116782b5407b7b6376d/old/v2/web/Sono-SemiBold.woff2 -------------------------------------------------------------------------------- /sources/config.yaml: -------------------------------------------------------------------------------- 1 | sources: 2 | - Sono.glyphs 3 | axisOrder: 4 | - MONO 5 | - wght 6 | familyName: "Sono" 7 | stat: 8 | - name: Monospace 9 | tag: MONO 10 | values: 11 | - name: Proportional 12 | value: 0 13 | - name: Monospace 14 | value: 1 15 | flags: 2 16 | - name: Weight 17 | tag: wght 18 | values: 19 | - name: ExtraLight 20 | value: 200 21 | - name: Light 22 | value: 300 23 | - name: Regular 24 | value: 400 25 | linkedValue: 700 26 | flags: 2 27 | - name: Medium 28 | value: 500 29 | - name: SemiBold 30 | value: 600 31 | - name: Bold 32 | value: 700 33 | - name: ExtraBold 34 | value: 800 35 | --------------------------------------------------------------------------------