Por que o asterisco em uma declaração de ponteiro é específico para o identificador e não para o tipo de dados?

Pergunta boba, mas tentando entender a mecânica / filosofia subjacente para solidificar minha compreensão.

int myInt; // declares a variable of type integer, named myInt. Intuitive.
int* myPtr; // declares a variable of type pointer-to-integer. Also intuitive.

int myInt2, myInt3; // two more integer variables.. yay!! This makes sense.
// so the pattern is [type] [identifier] <,more-identifiers>;

int* myInt4, myInt5; // an int pointer then an integer. Brain hurts!

questionAnswers(3)

yourAnswerToTheQuestion