LaTeX justifica el texto cuando se usa itemize

LaTeX justifica el texto cuando se usa itemize

Me gustaría crear una lista similar a esta en LaTex:

1. Title of bullet point one

   description

2. Title of bullet point two

   description

Intenté hacerlo usando este código:

\begin{itemize}
    \item Title of bullet point one\linebreak
    Text text text
    \item Title of bullet point two\linebreak
    Text text text
\end{itemize}

Sin embargo, cuando compilo el código, termina luciendo así: ingrese la descripción de la imagen aquí

¿¿Qué estoy haciendo mal??

Respuesta1

Muchas gracias @Skillmon y @daleif. ¡Lo tengo funcionando!

\begin{itemize}
    \item \textbf{Title of bullet point one}\newline
            Text text text
    \item \textbf{Title of bullet point two}\newline
            Text text text

información relacionada