本題とは外れるかもしれませんが、原ノ味フォントには中国語版や韓国語版もあります。日本語以外は TeX Live に入っていませんが、デザインが同じなので混植しても違和感が少ないと思います。
https://github.com/trueroad/HaranoAjiFontsCN
https://github.com/trueroad/HaranoAjiFontsTW
https://github.com/trueroad/HaranoAjiFontsKR
https://github.com/trueroad/HaranoAjiFontsK1
以下のようにしてみたところマルチウェイトでも使えました。
\documentclass{jlreq}
\usepackage[haranoaji,deluxe,match]{luatexja-preset}
\defaultjfontfeatures[HaranoAjiMinchoCN]
{
Extension = .otf,
UprightFont = *-Regular,
BoldFont = *-Bold,
FontFace = {l}{\shapedefault}{ *-Light },
FontFace = {eb}{\shapedefault}{ *-Bold }
}
\newjfontfamily{\HaranoAjiMinchoCN}{HaranoAjiMinchoCN}
\defaultjfontfeatures[HaranoAjiGothicCN]
{
Extension = .otf,
UprightFont = *-Regular,
BoldFont = *-Bold,
FontFace = {l}{\shapedefault}{ *-Regular },
FontFace = {eb}{\shapedefault}{ *-Heavy }
}
\newjfontfamily{\HaranoAjiGothicCN}{HaranoAjiGothicCN}
\defaultjfontfeatures[HaranoAjiMinchoTW]
{
Extension = .otf,
UprightFont = *-Regular,
BoldFont = *-Bold,
FontFace = {l}{\shapedefault}{ *-Light },
FontFace = {eb}{\shapedefault}{ *-Bold }
}
\newjfontfamily{\HaranoAjiMinchoTW}{HaranoAjiMinchoTW}
\defaultjfontfeatures[HaranoAjiGothicTW]
{
Extension = .otf,
UprightFont = *-Regular,
BoldFont = *-Bold,
FontFace = {l}{\shapedefault}{ *-Regular },
FontFace = {eb}{\shapedefault}{ *-Heavy }
}
\newjfontfamily{\HaranoAjiGothicTW}{HaranoAjiGothicTW}
\begin{document}
日本語 明朝 --- 汉语 直 骨 --- \textbf{汉语 直 骨}\par
{\gtfamily 日本語 ゴシック --- 汉语 直 骨 --- \textbf{汉语 直 骨}}\par
{\HaranoAjiMinchoCN 简体中文 宋体 --- 汉语 直 骨 --- \textbf{汉语 直 骨}}\par
{\HaranoAjiGothicCN 简体中文 黑体 --- 汉语 直 骨 --- \textbf{汉语 直 骨}}\par
{\HaranoAjiMinchoTW 繁體中文 宋體 --- 汉语 直 骨 --- \textbf{汉语 直 骨}}\par
{\HaranoAjiGothicTW 繁體中文 黑體 --- 汉语 直 骨 --- \textbf{汉语 直 骨}}
\end{document}