Is it possible to redefine \item to have the text in braces appear bold?
\documentclass{article}
\begin{document}
\begin{itemize}
\item{Paper}: a white substance used for writing symbols.
\item{Pencil}: a tool for writing symbols on a paper
\end{itemize}
\end{document}
I'd like to have the following output:
- Paper: a white substance used for writing symbols
- Pencil: a tool for writing symbols on a paper
I intend to place this in a template. Note that this is not used a glossary; rather, it is used for short overview of a variety of items that may, were the text a bit more extended, deserve a subsection, except each item is too short to deserve a subsection.

\begin{description}…\end{description}and put it in brackets\item[Paper]: …. – Manuel Feb 12 at 0:21