/* Example of how to use non-Latin font in Blocks, here applying the Noto Sans
  font with Latin and Japanese glyphs, obtained from

	https://gwfh.mranftl.com/fonts
 */
@font-face {
	font-family: 'NotoSansJP';
	font-style: normal;
	font-weight: 400;
	src: url('noto-sans-jp-v56-japanese_latin-regular.woff2') format('woff2');
}

/*  Apply that font to all Text blocks , text inputs and other controls
 */
.text-block, .ctrl-wrap {
	font-family: NotoSansJP, sans-serif;
}
